:root {
  --ink: #17211d;
  --muted: #5a6760;
  --paper: #fbfaf6;
  --white: #ffffff;
  --green: #138a55;
  --green-dark: #0e5e43;
  --lime: #d9ef58;
  --amber: #f5b94b;
  --sky: #dceef3;
  --line: #dfe6df;
  --shadow: 0 18px 48px rgba(19, 49, 36, 0.16);
  --radius: 8px;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

body.nav-open {
  overflow: hidden;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 246, 0.92);
  border-bottom: 1px solid rgba(23, 33, 29, 0.08);
  backdrop-filter: blur(16px);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.brand {
  display: inline-flex;
  align-items: flex-start;
  min-width: 156px;
  max-width: 180px;
}

.brand-logo {
  display: block;
  width: 180px;
  max-width: 34vw;
  height: 26px;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.main-nav a,
.nav-parent {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 15px;
  border-radius: 8px;
}

.main-nav a:hover,
.nav-dropdown:hover .nav-parent {
  color: var(--green-dark);
  background: rgba(19, 138, 85, 0.08);
}

.nav-dropdown {
  position: relative;
}

.nav-parent {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
}

.nav-parent::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.nav-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 4px;
  width: min(520px, 86vw);
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-dropdown:hover .nav-menu,
.nav-dropdown:focus-within .nav-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-menu a {
  padding: 10px;
  line-height: 1.25;
}

.header-call {
  display: inline-flex;
  justify-content: center;
  padding: 12px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  font-weight: 700;
  white-space: nowrap;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.lang-switch a {
  display: inline-grid;
  place-items: center;
  min-width: 38px;
  min-height: 34px;
  padding: 7px 8px;
  color: var(--muted);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
}

.lang-switch a.active {
  background: var(--green);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  padding: 120px clamp(18px, 5vw, 72px) 40px;
  overflow: hidden;
  background: var(--ink);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img,
.hero-media picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media picture,
.service-hero__media picture {
  display: block;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(13, 21, 17, 0.9) 0%, rgba(13, 21, 17, 0.78) 34%, rgba(13, 21, 17, 0.24) 72%, rgba(13, 21, 17, 0.5) 100%),
    linear-gradient(0deg, rgba(13, 21, 17, 0.65) 0%, rgba(13, 21, 17, 0) 38%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--lime);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.97;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  font-size: 21px;
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-text {
  max-width: 640px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  line-height: 1.55;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 20px;
  border-radius: 8px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex: 0 0 auto;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: var(--lime);
  color: #17211d;
  box-shadow: 0 12px 30px rgba(217, 239, 88, 0.22);
}

.btn.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.32);
}

.btn.secondary.dark {
  color: var(--ink);
  background: var(--white);
  border-color: rgba(23, 33, 29, 0.14);
}

.btn.full {
  width: 100%;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
  margin-top: 34px;
}

.hero-stats div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  font-size: 22px;
}

.hero-stats span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.35;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0 clamp(18px, 5vw, 72px);
  transform: translateY(-32px);
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.trust-strip div {
  padding: 22px;
  background: var(--white);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.section {
  padding: 70px clamp(18px, 5vw, 72px);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head.compact {
  display: block;
  max-width: 760px;
}

.section-head p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.65;
  font-size: 17px;
}

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

.service-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 26px rgba(23, 33, 29, 0.05);
}

.card-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  background: var(--sky);
  border-radius: 8px;
  color: var(--green-dark);
  font-weight: 900;
}

.service-card p {
  color: var(--muted);
  line-height: 1.58;
}

.service-card a {
  margin-top: auto;
  color: var(--green-dark);
  font-weight: 800;
}

.quote-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.62fr);
  gap: 34px;
  align-items: stretch;
  background: #eef6ef;
}

.quote-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 760px;
}

.quote-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.messengers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.messengers a {
  padding: 11px 14px;
  background: var(--white);
  border: 1px solid rgba(19, 138, 85, 0.18);
  border-radius: 8px;
  color: var(--green-dark);
  font-weight: 800;
}

.quote-form {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quote-form label {
  display: grid;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--ink);
  font-weight: 800;
}

.quote-form input,
.quote-form select {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfb;
  color: var(--ink);
}

.quote-form input[type="range"] {
  min-height: auto;
  padding: 0;
  accent-color: var(--green);
}

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

.checkbox-line {
  grid-template-columns: 22px 1fr;
  align-items: center;
  font-weight: 700;
}

.checkbox-line input {
  min-height: auto;
  accent-color: var(--green);
}

.quote-result {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin: 22px 0;
  padding: 18px;
  background: var(--ink);
  color: var(--white);
  border-radius: 8px;
}

.quote-result span {
  color: rgba(255, 255, 255, 0.68);
}

.quote-result strong {
  font-size: 26px;
  white-space: nowrap;
}

.price-table {
  display: grid;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}

.price-row {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr 0.55fr;
  gap: 20px;
  align-items: center;
  min-height: 68px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}

.price-row:last-child {
  border-bottom: 0;
}

.price-row.head {
  background: var(--ink);
  color: var(--white);
  min-height: 54px;
  font-weight: 800;
}

.price-row span:nth-child(2) {
  color: var(--muted);
}

.price-row.head span:nth-child(2) {
  color: rgba(255, 255, 255, 0.78);
}

.price-row strong {
  color: var(--green-dark);
  text-align: right;
}

.coverage {
  background: #f5f2e8;
}

.coverage-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

.map-card {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #fff 0%, #dceef3 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.map-card strong,
.map-card small {
  position: relative;
  z-index: 2;
  display: block;
  text-align: center;
}

.map-card strong {
  width: 118px;
  height: 118px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-size: 25px;
  box-shadow: 0 20px 40px rgba(19, 138, 85, 0.28);
}

.map-card small {
  position: absolute;
  top: calc(50% + 74px);
  color: var(--green-dark);
  font-weight: 800;
}

.ring {
  position: absolute;
  border: 1px solid rgba(19, 138, 85, 0.28);
  border-radius: 50%;
}

.r1 {
  width: 220px;
  height: 220px;
}

.r2 {
  width: 320px;
  height: 320px;
}

.r3 {
  width: 440px;
  height: 440px;
}

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

.location-lists > div {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.location-lists ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.location-lists li {
  padding: 10px 12px;
  background: #f7faf7;
  border-radius: 8px;
  color: var(--muted);
  font-weight: 700;
}

.location-lists li a {
  display: block;
  color: var(--green-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.location-lists li a:hover {
  color: var(--green);
}

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

.process-grid div {
  padding: 24px;
  border-left: 4px solid var(--green);
  background: var(--white);
  border-radius: 8px;
}

.process-grid span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  background: var(--amber);
  border-radius: 8px;
  font-weight: 900;
}

.process-grid p,
.faq-list p {
  color: var(--muted);
  line-height: 1.6;
}

.faq {
  background: var(--white);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 18px;
  background: var(--paper);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 0;
  font-weight: 850;
}

.faq-list p {
  margin-bottom: 18px;
}

.cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin: 70px clamp(18px, 5vw, 72px);
  padding: clamp(28px, 5vw, 54px);
  background: var(--green-dark);
  color: var(--white);
  border-radius: 8px;
}

.cta .eyebrow {
  color: var(--lime);
}

.cta p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.footer-logo {
  display: block;
  width: 180px;
  height: 26px;
  object-fit: contain;
  object-position: left center;
}

.site-footer strong {
  color: var(--ink);
  margin-bottom: 5px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer a {
  font-weight: 800;
}

.service-hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  align-items: center;
  padding: 120px clamp(18px, 5vw, 72px) 60px;
  overflow: hidden;
  background: var(--ink);
}

.service-hero__media,
.service-hero__overlay {
  position: absolute;
  inset: 0;
}

.service-hero__media img,
.service-hero__media picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-hero__overlay {
  background:
    linear-gradient(90deg, rgba(13, 21, 17, 0.92) 0%, rgba(13, 21, 17, 0.78) 48%, rgba(13, 21, 17, 0.28) 100%),
    linear-gradient(0deg, rgba(13, 21, 17, 0.62), rgba(13, 21, 17, 0.05));
}

.service-hero__content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  color: var(--white);
}

.service-hero h1 {
  margin-bottom: 18px;
}

.service-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.65;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.82);
}

.breadcrumbs a::after {
  content: "/";
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.42);
}

.service-section {
  padding-top: 56px;
  padding-bottom: 56px;
}

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

.info-card,
.review-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.info-card p,
.review-card p {
  color: var(--muted);
  line-height: 1.6;
}

.link-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.link-cloud a {
  padding: 11px 13px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--green-dark);
  font-weight: 800;
}

.price-links {
  margin-top: 18px;
}

.service-strip {
  transform: none;
  margin: 0;
  box-shadow: none;
}

.service-strip div {
  display: grid;
  gap: 6px;
}

.work-gallery,
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.work-gallery div {
  display: grid;
  place-items: center;
  min-height: 180px;
  padding: 24px;
  background: linear-gradient(135deg, var(--sky), var(--white));
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--green-dark);
  font-weight: 900;
  text-align: center;
}

.service-cta {
  margin-top: 36px;
}

.policy-updated {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

@media (max-width: 1100px) {
  .service-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .section-head,
  .quote-panel,
  .coverage-layout {
    grid-template-columns: 1fr;
  }

  .map-card {
    min-height: 320px;
  }
}

@media (max-width: 1100px) {
  .site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 10px;
    min-height: 68px;
    padding: 12px 16px;
  }

  .brand {
    order: 1;
    flex: 0 1 auto;
    min-width: 0;
    max-width: 156px;
  }

  .brand-logo {
    width: 156px;
    max-width: 42vw;
    height: 23px;
  }

  .nav-toggle {
    order: 3;
    flex: 0 0 auto;
    display: block;
  }

  .main-nav {
    order: 4;
    position: fixed;
    inset: 68px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 18px 18px;
    max-height: calc(100dvh - 68px);
    overflow-y: auto;
    overscroll-behavior: contain;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a,
  .nav-parent {
    padding: 14px 10px;
    border-bottom: 1px solid var(--line);
  }

  .nav-menu {
    position: static;
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
    padding: 4px 0 8px 12px;
    border: 0;
    box-shadow: none;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-menu a {
    padding: 10px;
    font-size: 14px;
    background: rgba(19, 138, 85, 0.06);
    border-bottom: 0;
  }

  .header-call {
    display: none;
  }

  .header-actions {
    display: inline-flex;
    order: 2;
    flex: 0 0 auto;
  }

  .hero {
    min-height: 100vh;
    padding-top: 110px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(13, 21, 17, 0.9), rgba(13, 21, 17, 0.62)),
      linear-gradient(0deg, rgba(13, 21, 17, 0.78), rgba(13, 21, 17, 0.04) 52%);
  }

  .hero-media img {
    object-position: 62% center;
  }

  .hero-stats,
  .location-lists,
  .price-row {
    grid-template-columns: 1fr;
  }

  .price-row strong {
    text-align: left;
  }

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

  .site-footer {
    display: grid;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: 42px;
    line-height: 1;
  }

  h2 {
    font-size: 31px;
  }

  .hero-text {
    font-size: 17px;
  }

  .hero {
    min-height: auto;
    padding-top: 104px;
    padding-bottom: 54px;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 24px;
  }

  .hero-stats div {
    min-width: 0;
    padding: 12px 9px;
  }

  .hero-stats strong {
    font-size: 18px;
  }

  .hero-stats span {
    font-size: 11px;
  }

  .hero-actions,
  .cta-actions {
    display: grid;
  }

  .trust-strip,
  .service-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    transform: none;
    margin-top: 18px;
  }

  .section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .quote-form {
    padding: 18px;
  }

  .location-lists ul {
    grid-template-columns: 1fr;
  }

  .cta {
    margin-top: 48px;
    margin-bottom: 48px;
  }

  .service-hero {
    min-height: 88vh;
    padding-top: 104px;
  }

  .info-grid,
  .work-gallery,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .service-hero p:not(.eyebrow) {
    font-size: 16px;
  }
}

@media (max-width: 380px) {
  .site-header {
    gap: 6px;
    padding: 10px 12px;
  }

  .brand {
    max-width: 126px;
  }

  .brand-logo {
    width: 126px;
    max-width: 35vw;
    height: 19px;
  }

  .lang-switch a {
    min-width: 34px;
    min-height: 32px;
    padding: 6px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }
}
