/*
Theme Name: Dreux Peche
Theme URI: https://dreuxpeche.fr
Author: Dreux Peche
Description: Maatwerkthema voor Dreux Peche, voorbereid op een latere WooCommerce-webshop.
Version: 0.2.0
Requires at least: 6.4
Tested up to: 6.6
Requires PHP: 8.1
Text Domain: dreux-peche
*/

:root {
  --ink: #111713;
  --muted: #5f6d66;
  --paper: #f4f2eb;
  --surface: #ffffff;
  --line: #d7ddd7;
  --green: #0f5a37;
  --green-deep: #092e21;
  --blue: #126d85;
  --blue-deep: #0c3e50;
  --yellow: #f3ce2f;
  --gold: #bd8740;
  --clay: #b24d2d;
  --shadow: 0 24px 70px rgba(17, 23, 19, 0.16);
  --radius: 8px;
  --scroll-progress: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.5;
}

body[data-lang="fr"] .lang-en,
body[data-lang="fr"] .lang-nl,
body[data-lang="en"] .lang-fr,
body[data-lang="en"] .lang-nl,
body[data-lang="nl"] .lang-fr,
body[data-lang="nl"] .lang-en {
  display: none !important;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(215, 221, 215, 0.86);
  background: rgba(244, 242, 235, 0.92);
  backdrop-filter: blur(16px);
}

.site-header__inner,
.section__inner,
.site-footer__inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header__inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: block;
  width: 154px;
}

.brand__logo {
  width: 154px;
  height: auto;
  border: 1px solid rgba(15, 90, 55, 0.22);
  background: #fff;
}

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(14px, 2.2vw, 30px);
  color: #35423b;
  font-size: 15px;
  font-weight: 760;
}

.nav a {
  position: relative;
  padding: 26px 0 24px;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.language-switch {
  display: inline-grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.language-switch__button {
  min-width: 42px;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

.language-switch__button.is-active {
  color: #fff;
  background: var(--green);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 820;
  transition: transform 170ms ease, border-color 170ms ease, background-color 170ms ease, color 170ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

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

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--green-deep);
}

.button--light {
  color: var(--ink);
  background: #fff;
}

.button--secondary {
  border-color: var(--line);
  background: #fff;
}

.hero {
  position: relative;
  min-height: min(760px, 82svh);
  display: grid;
  align-items: end;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 30, 22, 0.87), rgba(9, 46, 33, 0.58) 48%, rgba(18, 109, 133, 0.14)),
    var(--hero-image) center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(0deg, rgba(9, 46, 33, 0.68), transparent);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(96px, 14vh, 150px) 0 clamp(150px, 18vh, 190px);
  color: #fff;
}

.eyebrow {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow--dark {
  color: var(--green);
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(58px, 9vw, 112px);
  line-height: 0.88;
  letter-spacing: 0;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
}

.hero__lead {
  max-width: 660px;
  margin: 24px 0 32px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(19px, 2.2vw, 25px);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__facts {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 18px;
  width: min(1180px, calc(100% - 32px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  color: #fff;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
}

.hero__facts span {
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 12px;
  text-align: center;
  font-weight: 850;
}

.section {
  padding: clamp(72px, 9vw, 116px) 0;
}

.section--light {
  background: #fbfaf5;
}

.intro-band {
  padding: 40px 0;
  background: var(--green-deep);
  color: #fff;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.45fr 1fr;
  align-items: start;
  gap: 28px;
}

.intro-kicker {
  margin: 8px 0 0;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intro-grid h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.03;
}

.intro-grid p {
  color: rgba(255, 255, 255, 0.78);
}

.intro-grid > p {
  margin: 0;
}

.brand-section {
  overflow: hidden;
  padding: 28px 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.brand-marquee {
  position: relative;
  overflow: hidden;
  padding: 4px 0;
}

.brand-marquee::before,
.brand-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(13vw, 160px);
  pointer-events: none;
}

.brand-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0));
}

.brand-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #fff, rgba(255, 255, 255, 0));
}

.brand-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: brand-marquee 46s linear infinite;
  will-change: transform;
}

.brand-marquee:hover .brand-track {
  animation-play-state: paused;
}

.brand-set {
  display: flex;
  gap: 16px;
}

.brand-logo {
  width: 206px;
  min-height: 92px;
  display: grid;
  place-items: center;
  padding: 18px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(17, 23, 19, 0.04);
  transition: transform 170ms ease, border-color 170ms ease;
}

.brand-logo:hover,
.brand-logo:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(15, 90, 55, 0.36);
}

.brand-logo img {
  width: 100%;
  max-width: 156px;
  max-height: 54px;
  object-fit: contain;
}

.brand-logo--rok,
.brand-logo--rozemeijer,
.brand-logo--blackcat,
.brand-logo--preston,
.brand-logo--nash {
  background: #111713;
}

.brand-logo--foxrage {
  background: #f2f3ef;
}

.section__heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section__heading h2,
.split-layout h2,
.lake-grid h2,
.future-grid h2,
.contact-grid h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 0.98;
  letter-spacing: 0;
}

.section__heading p,
.split-layout p,
.lake-grid p,
.future-grid p,
.contact-grid p {
  max-width: 640px;
  color: var(--muted);
  font-size: 18px;
}

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

.category-tile {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--green-deep);
  color: #fff;
  box-shadow: 0 1px 0 rgba(17, 23, 19, 0.08);
}

.category-tile--wide {
  grid-column: span 2;
}

.category-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  transition: transform 500ms ease, opacity 500ms ease;
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 30, 22, 0.88), rgba(7, 30, 22, 0.08) 62%);
}

.category-tile div {
  position: absolute;
  z-index: 1;
  left: 22px;
  right: 22px;
  bottom: 22px;
}

.category-tile h3 {
  margin: 0 0 8px;
  font-size: 27px;
}

.category-tile p {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.category-tile:hover img {
  transform: scale(1.045);
  opacity: 0.92;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(34px, 6vw, 72px);
  align-items: center;
}

.store-section {
  background:
    linear-gradient(90deg, rgba(18, 109, 133, 0.1), transparent 38%),
    var(--paper);
}

.service-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.service-list span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #27342d;
  font-weight: 790;
}

.service-list span::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: inset 0 0 0 3px var(--green);
}

.photo-stack {
  position: relative;
  min-height: 560px;
}

.photo-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.photo-stack__main {
  position: absolute;
  inset: 0 auto auto 0;
  width: 78% !important;
  height: 72% !important;
}

.photo-stack__float {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 58% !important;
  height: 50% !important;
  border: 8px solid var(--paper);
}

.lake-section {
  position: relative;
  overflow: hidden;
  padding: clamp(84px, 10vw, 128px) 0;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(9, 46, 33, 0.93), rgba(12, 62, 80, 0.96)),
    #0b3f47;
}

.lake-section .eyebrow {
  color: var(--yellow);
}

.lake-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(34px, 6vw, 74px);
  align-items: center;
}

.lake-grid p {
  color: rgba(255, 255, 255, 0.78);
}

.lake-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.lake-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.lake-panel__stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(48, 80, 88, 0.96);
}

.lake-panel__stats span {
  display: grid;
  gap: 2px;
  padding: 18px 14px;
  text-align: center;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.lake-panel__stats strong {
  color: #fff;
  font-size: 25px;
}

.lake-water {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.42;
  pointer-events: none;
}

.lake-fish {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.lake-fish__fish {
  position: absolute;
  width: 54px;
  height: 20px;
  border-radius: 70% 45% 45% 70%;
  background: linear-gradient(90deg, rgba(243, 206, 47, 0.16), rgba(243, 206, 47, 0.5));
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.12));
  animation: fish-swim 22s linear infinite;
}

.lake-fish__fish::before {
  content: "";
  position: absolute;
  right: -12px;
  top: 3px;
  border-left: 16px solid rgba(243, 206, 47, 0.42);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}

.lake-fish__fish::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 5px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.58);
}

.lake-fish__fish--one {
  left: -90px;
  top: 24%;
}

.lake-fish__fish--two {
  left: -180px;
  top: 42%;
  width: 38px;
  height: 15px;
  opacity: 0.72;
  animation-duration: 28s;
  animation-delay: -8s;
}

.lake-fish__fish--three {
  left: -140px;
  top: 68%;
  width: 68px;
  height: 24px;
  opacity: 0.62;
  animation-duration: 34s;
  animation-delay: -15s;
}

.lake-fish__fish--four {
  left: -240px;
  top: 14%;
  width: 44px;
  height: 17px;
  opacity: 0.5;
  animation-duration: 31s;
  animation-delay: -20s;
}

.lake-water::before,
.lake-water::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  height: 34%;
  background:
    repeating-linear-gradient(172deg, rgba(255, 255, 255, 0.11) 0 2px, transparent 2px 28px);
  transform: translateY(calc(var(--scroll-progress) * 80px));
}

.lake-water::before {
  top: 10%;
}

.lake-water::after {
  bottom: 6%;
  transform: translateY(calc(var(--scroll-progress) * -70px));
}

.lake-water__cast {
  position: absolute;
  left: 8%;
  top: 23%;
  width: 52%;
  height: 34%;
  border-top: 2px solid rgba(243, 206, 47, 0.74);
  border-radius: 50% 50% 0 0;
  transform: rotate(calc(-9deg + var(--scroll-progress) * 18deg));
  transform-origin: left center;
}

.lake-water__ring {
  position: absolute;
  right: 18%;
  top: 45%;
  width: 160px;
  height: 54px;
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  animation: lake-ring 3.8s ease-in-out infinite;
}

.lake-water__ring--two {
  width: 240px;
  height: 82px;
  margin: -14px -40px 0 0;
  animation-delay: 0.7s;
}

.lake-water__ring--three {
  width: 340px;
  height: 112px;
  margin: -28px -90px 0 0;
  animation-delay: 1.4s;
}

.future-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.facebook-section {
  background:
    linear-gradient(90deg, rgba(18, 109, 133, 0.08), transparent 46%),
    var(--paper);
}

.facebook-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(30px, 6vw, 72px);
  align-items: center;
}

.facebook-grid h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 0.98;
}

.facebook-grid p {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
}

.facebook-card {
  display: grid;
  place-items: center;
  min-height: 600px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.facebook-card iframe {
  width: min(500px, 100%);
  max-width: 100%;
}

.contact-section {
  background:
    linear-gradient(90deg, rgba(242, 206, 47, 0.18), transparent 38%),
    #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: clamp(28px, 6vw, 74px);
  align-items: start;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(17, 23, 19, 0.05);
}

.contact-card dl {
  margin: 0;
}

.contact-card div {
  display: grid;
  gap: 6px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.contact-card div:last-child {
  border-bottom: 0;
}

.contact-card dt {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card dd {
  margin: 0;
  color: #27342d;
  font-size: 18px;
  font-weight: 720;
}

.contact-card dd a {
  display: inline-flex;
  margin-right: 14px;
  color: var(--blue-deep);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.site-footer {
  padding: 34px 0;
  background: var(--green-deep);
  color: rgba(255, 255, 255, 0.78);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 150px 1fr 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.site-footer strong {
  display: block;
  color: #fff;
  margin-bottom: 4px;
}

.site-footer p {
  margin: 0;
}

.footer-brand img {
  width: 142px;
  background: #fff;
}

.footer-links {
  display: grid;
  gap: 4px;
}

.footer-links a:hover {
  color: #fff;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-rod {
  position: fixed;
  z-index: 25;
  top: 94px;
  right: clamp(18px, 4vw, 72px);
  width: 160px;
  height: calc(100svh - 124px);
  pointer-events: none;
  opacity: 0.8;
}

.scroll-rod__rod {
  position: absolute;
  top: 4px;
  right: 28px;
  width: 132px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, #20130c, #8b5930 52%, #e1c07b);
  transform: rotate(calc(28deg - var(--scroll-progress) * 20deg));
  transform-origin: right center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.26);
}

.scroll-rod__line {
  position: absolute;
  top: 24px;
  right: 29px;
  width: 1px;
  height: calc(18vh + var(--scroll-progress) * 52vh);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 0 0 1px rgba(15, 90, 55, 0.16);
}

.scroll-rod__lure {
  position: absolute;
  top: calc(24px + 18vh + var(--scroll-progress) * 52vh);
  right: 21px;
  width: 18px;
  height: 32px;
  border-radius: 50% 50% 55% 55%;
  background: linear-gradient(180deg, var(--yellow), var(--clay));
  transform: rotate(calc(-14deg + var(--scroll-progress) * 38deg));
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

.scroll-rod__lure::after {
  content: "";
  position: absolute;
  left: 7px;
  bottom: -10px;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(17, 23, 19, 0.7);
  border-bottom: 2px solid rgba(17, 23, 19, 0.7);
  border-radius: 0 0 8px 0;
}

@keyframes lake-ring {
  0% {
    opacity: 0;
    transform: scale(0.72);
  }

  36% {
    opacity: 0.9;
  }

  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}

@keyframes brand-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 8px));
  }
}

@keyframes fish-swim {
  from {
    transform: translateX(-6vw) translateY(0) rotate(0deg);
  }

  45% {
    transform: translateX(54vw) translateY(-18px) rotate(3deg);
  }

  to {
    transform: translateX(112vw) translateY(8px) rotate(-2deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 980px) {
  .site-header__inner {
    min-height: auto;
    grid-template-columns: 1fr auto;
    padding: 12px 0;
  }

  .language-switch {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .nav a {
    flex: 0 0 auto;
    padding: 6px 0 10px;
  }

  .nav a::after {
    bottom: 4px;
  }

  .intro-grid,
  .split-layout,
  .lake-grid,
  .future-grid,
  .facebook-grid,
  .contact-grid,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

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

  .category-tile--wide {
    grid-column: span 2;
  }

  .scroll-rod {
    display: none;
  }

  .facebook-card {
    min-height: 580px;
  }
}

@media (max-width: 660px) {
  .hero {
    min-height: 640px;
  }

  .hero__content {
    padding-top: 78px;
    padding-bottom: 72px;
  }

  .hero__facts {
    display: none;
  }

  .hero__actions {
    display: grid;
    max-width: 240px;
  }

  .category-grid,
  .lake-panel__stats {
    grid-template-columns: 1fr;
  }

  .brand-logo {
    width: 178px;
    min-height: 78px;
  }

  .brand-logo img {
    max-width: 134px;
    max-height: 46px;
  }

  .category-tile,
  .category-tile--wide {
    grid-column: auto;
    min-height: 310px;
  }

  .photo-stack {
    min-height: 450px;
  }

  .photo-stack__main {
    width: 100% !important;
    height: 70% !important;
  }

  .photo-stack__float {
    width: 76% !important;
    height: 42% !important;
  }

  .contact-actions {
    display: grid;
  }

  .facebook-card {
    min-height: 520px;
    padding: 12px;
  }

  .facebook-card iframe {
    height: 500px;
  }

  .brand,
  .brand__logo {
    width: 132px;
  }
}
