  :root {
    /* Sunflower yellow theme — black (ink) and white are the only accents.
       Old variable names kept so the rest of the stylesheet didn't need touching. */
    --yellow: #FFDD33;
    --yellow-deep: #e6b800;
    --ink: #121212;
    --ink-dim: rgba(18, 18, 18, 0.68);
    --void: #0a0a0a;
    --white: #ffffff;
    --white-dim: rgba(255, 255, 255, 0.7);

    --graphite-950: var(--yellow);
    --graphite-900: var(--ink);
    --graphite-850: var(--yellow-deep);
    --line: rgba(18, 18, 18, 0.22);
    --paper: var(--ink);
    --paper-dim: var(--ink-dim);
    --wire: var(--ink);
    --wire-dim: rgba(18, 18, 18, 0.3);
    --tan: var(--ink);
    --tan-dim: rgba(18, 18, 18, 0.4);
    --amber: var(--ink);

    --display: 'Archivo', sans-serif;
    --body-font: 'IBM Plex Sans', -apple-system, sans-serif;
    --mono: 'IBM Plex Mono', 'SF Mono', Consolas, monospace;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; background: var(--graphite-950); overflow-x: hidden; }
  @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

  body {
    background-color: var(--graphite-950);
    background-image:
      linear-gradient(rgba(18,18,18,0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(18,18,18,0.05) 1px, transparent 1px);
    background-size: 48px 48px;
    color: var(--paper);
    font-family: var(--body-font);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  a { color: inherit; text-decoration: none; }
  ::selection { background: var(--wire); color: var(--graphite-950); }
  :focus-visible { outline: 2px solid var(--wire); outline-offset: 4px; }

  .eyebrow {
    font-family: var(--mono);
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--wire);
  }

  .container { max-width: 1180px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 3rem); }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.4rem clamp(1.25rem, 4vw, 3rem);
    font-family: var(--mono); font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase;
    backdrop-filter: blur(10px);
    background: linear-gradient(to bottom, rgba(255,225,1,0.85), transparent);
    transition: background 0.3s, border-color 0.3s;
    border-bottom: 1px solid transparent;
  }
  nav.scrolled { background: rgba(255,225,1,0.92); border-bottom-color: var(--line); }
  nav .wordmark { font-weight: 600; color: var(--paper); }
  nav ul { list-style: none; display: flex; gap: 2rem; }
  nav a { opacity: 0.75; transition: opacity 0.2s, color 0.2s; }
  nav a:hover { opacity: 1; color: var(--wire); }
  @media (max-width: 640px) { nav ul { gap: 1.1rem; font-size: 0.7rem; } }

  section { position: relative; padding: clamp(5rem, 10vw, 8rem) 0; }
  .section-head { max-width: 640px; margin-bottom: clamp(2.5rem, 6vw, 4.5rem); }
  .section-head h2 {
    font-family: var(--display); font-weight: 800;
    font-size: clamp(1.8rem, 4vw, 3rem); margin-top: 0.7rem; letter-spacing: -0.01em;
  }

  .btn {
    font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 0.9rem 1.6rem; border: 1px solid var(--line); border-radius: 2px;
    background: transparent; color: var(--paper); cursor: pointer;
    display: inline-flex; align-items: center; gap: 0.6rem;
    transition: border-color .2s, color .2s, background .2s, box-shadow .2s;
  }
  .btn:hover { background: var(--ink); border-color: var(--ink); color: var(--yellow); }
  .btn.primary {
    background: var(--ink); border-color: var(--ink); color: var(--yellow); font-weight: 600;
  }
  .btn.primary:hover { background: #2b2b2b; border-color: #2b2b2b; color: var(--yellow); }

  /* HERO */
  .hero { min-height: 100svh; display: flex; flex-direction: column; justify-content: center; padding-top: 6rem; overflow: hidden; }
  .hero-content { position: relative; z-index: 2; }
  .hero h1 {
    font-family: var(--display); font-weight: 900;
    font-size: clamp(2.4rem, 7vw, 5.2rem); letter-spacing: -0.01em; line-height: 1.02;
    max-width: 16ch; margin: 1.2rem 0 1.4rem;
  }
  .hero p.sub { font-size: clamp(1rem, 1.6vw, 1.2rem); color: var(--paper-dim); max-width: 46ch; margin-bottom: 2rem; }
  .hero .scroll-cue {
    margin-top: 3.4rem; font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.15em;
    color: var(--paper-dim); display: flex; align-items: center; gap: 0.6rem;
  }
  .hero .scroll-cue::after {
    content: ''; width: 1px; height: 28px;
    background: linear-gradient(var(--wire), transparent);
    animation: scrollcue 1.8s ease-in-out infinite;
  }
  @keyframes scrollcue { 0%,100%{opacity:.2} 50%{opacity:1} }
  @media (prefers-reduced-motion: reduce) { .hero .scroll-cue::after { animation: none; opacity: .5; } }

  .hero-art {
    position: absolute; right: clamp(-3rem, 2vw, 3rem); top: 50%; transform: translateY(-50%);
    width: min(46vw, 620px); aspect-ratio: 1; z-index: 1; opacity: 0.95;
  }
  .hero-art svg { overflow: visible; width: 100%; height: 100%; }
  @media (max-width: 900px) {
    .hero { overflow: visible; }
    .hero-art { position: relative; inset: auto; width: min(80vw, 420px); margin: 2.5rem auto 0; transform: none; }
  }

  .sketch-layer { fill: none; stroke: var(--tan); stroke-width: 1.4; opacity: 0.32; stroke-dasharray: 3 5; }
  .precise-layer { fill: none; stroke: var(--wire); stroke-width: 1.6; opacity: 0; }
  .precise-layer .p-center { fill: var(--graphite-900); }
  #holesGroup circle { stroke-width: 1.1; }
  .precise-layer .dim, .precise-layer .callout { stroke: none; fill: var(--wire); font-family: var(--mono); font-size: 11px; letter-spacing: 0.05em; }
  .precise-layer .dim line { stroke: var(--wire); stroke-width: 1; fill: none; }
  .precise-layer .callout.small { fill: var(--tan); font-size: 9px; }

  /* CAPABILITIES */
  .cap-stage { position: relative; height: clamp(220px, 30vw, 340px); margin-bottom: 2.5rem; color: var(--wire); }
  .cap-part { position: absolute; top: 50%; left: 50%; width: clamp(64px, 8vw, 96px); }
  .cap-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 4vw, 3rem); border-top: 1px solid var(--line); padding-top: 2.2rem; }
  .cap-item h3 { font-family: var(--display); font-weight: 700; font-size: 1.15rem; margin-bottom: 0.6rem; }
  .cap-item p { color: var(--paper-dim); font-size: 0.92rem; }
  @media (max-width: 760px) { .cap-list { grid-template-columns: 1fr; gap: 2rem; } }

  /* FOCUS — the one deliberately dark, cinematic section; everything in it flips to white */
  .focus { background: var(--void); overflow: hidden; color: var(--white); }
  .focus-silhouette { position: absolute; bottom: -4%; left: 50%; width: min(1400px, 170vw); max-width: 100%; transform: translateX(-50%); pointer-events: none; fill: none; }
  .focus-silhouette .fs-line, .focus-silhouette .fs-wheel, .focus-silhouette .fs-hub { stroke: var(--white); }
  .focus-silhouette .fs-ground { stroke: var(--white); opacity: 0.5; }
  .focus .container { position: relative; z-index: 2; }
  .focus :focus-visible { outline-color: var(--white); }
  .focus .tag {
    font-family: var(--mono); font-size: 0.72rem; color: var(--white); letter-spacing: 0.14em;
    border: 1px solid rgba(255,255,255,0.35); padding: 0.35rem 0.7rem; display: inline-block; margin-bottom: 1.4rem;
  }
  .focus h2 { font-family: var(--display); font-weight: 900; font-size: clamp(2rem, 5.4vw, 4rem); max-width: 15ch; line-height: 1.05; margin-bottom: 1.6rem; color: var(--white); }
  .focus p { color: var(--white-dim); max-width: 46ch; margin-bottom: 2.2rem; font-size: 1.02rem; }
  .focus .btn { border-color: rgba(255,255,255,0.35); color: var(--white); }
  .focus .btn:hover { background: var(--white); border-color: var(--white); color: var(--void); }

  /* PROCESS */
  .process-list { border-top: 1px solid var(--line); }
  .process-item { display: grid; grid-template-columns: 4.5rem 1fr; gap: 1.5rem; padding: 1.8rem 0; border-bottom: 1px solid var(--line); align-items: baseline; }
  .process-item .num { font-family: var(--mono); color: var(--wire); font-size: 0.95rem; }
  .process-item h3 { font-family: var(--display); font-weight: 700; font-size: 1.1rem; margin-bottom: 0.3rem; }
  .process-item p { color: var(--paper-dim); font-size: 0.92rem; max-width: 46ch; }
  @media (max-width: 600px) { .process-item { grid-template-columns: 2.6rem 1fr; } }

  /* PHOTOS — grayscale + multiply over a yellow tint turns mixed-quality shots into one consistent set */
  .photo-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 3vw, 1.6rem); margin-top: clamp(2.5rem, 6vw, 4rem); }
  .photo-frame { position: relative; aspect-ratio: 4 / 5; background: var(--yellow-deep); border: 1px solid var(--line); overflow: hidden; display: flex; align-items: center; justify-content: center; }
  .photo-frame img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.15); mix-blend-mode: multiply; display: block; }
  .photo-frame .placeholder-label { font-family: var(--mono); font-size: 0.68rem; color: var(--ink-dim); text-align: center; padding: 1rem; letter-spacing: 0.04em; }
  .photo-caption { font-family: var(--mono); font-size: 0.7rem; color: var(--ink-dim); margin-top: 0.6rem; letter-spacing: 0.03em; }
  @media (max-width: 760px) { .photo-row { grid-template-columns: 1fr 1fr; } }

  /* CONTACT */
  .contact h2 { font-family: var(--display); font-weight: 800; font-size: clamp(1.8rem, 4.4vw, 3.2rem); max-width: 14ch; margin: 1rem 0 1.2rem; }
  .contact .sub { color: var(--paper-dim); max-width: 46ch; margin-bottom: 2.2rem; }
  .submit-form { max-width: 560px; }
  .submit-form .field { margin-bottom: 1.3rem; }
  .submit-form label { display: block; font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--paper-dim); margin-bottom: 0.5rem; }
  .submit-form input[type="text"], .submit-form input[type="email"], .submit-form textarea, .submit-form input[type="file"] {
    width: 100%; font-family: var(--body-font); font-size: 0.98rem; color: var(--paper);
    background: rgba(255,255,255,0.35); border: 1px solid var(--line); border-radius: 2px;
    padding: 0.75rem 0.9rem;
  }
  .submit-form textarea { resize: vertical; }
  .submit-form input:focus, .submit-form textarea:focus { outline: 2px solid var(--ink); outline-offset: 1px; }
  .form-status { margin-top: 1rem; font-family: var(--mono); font-size: 0.82rem; min-height: 1.2em; }
  .form-status.error { color: #b3251b; }

  footer {
    border-top: 1px solid var(--line); padding: 2rem clamp(1.25rem, 4vw, 3rem);
    display: flex; justify-content: space-between; align-items: center;
    font-family: var(--mono); font-size: 0.72rem; color: var(--paper-dim); letter-spacing: 0.05em;
    flex-wrap: wrap; gap: 0.8rem;
  }

  /* ABOUT */
  .about .layout { display: grid; grid-template-columns: 1fr 280px; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
  .about .photo-frame { aspect-ratio: 4 / 5; }
  .about p { color: var(--paper-dim); margin-bottom: 1rem; max-width: 56ch; }
  @media (max-width: 760px) { .about .layout { grid-template-columns: 1fr; } .about .photo-frame { max-width: 260px; } }

  /* EXAMPLES PAGE — tile grid */
  .tile-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2.5vw, 1.6rem); margin-top: 2.5rem; }
  .tile { display: block; }
  .tile-media { aspect-ratio: 1; margin-bottom: 0.7rem; transition: transform 0.25s ease; }
  .tile:hover .tile-media { transform: scale(1.03); }
  .tile-label { font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.03em; }
  @media (max-width: 900px) { .tile-grid { grid-template-columns: repeat(2, 1fr); } }

  /* EXAMPLES PAGE — in-depth sections, alternating layout */
  .example-detail { border-top: 1px solid var(--line); scroll-margin-top: 5rem; }
  .example-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
  .example-detail:nth-of-type(even) .example-media { order: -1; }
  .example-media { aspect-ratio: 4 / 3; }
  .example-text .eyebrow { display: block; margin-bottom: 0.6rem; }
  .example-text h2 { font-family: var(--display); font-weight: 800; font-size: clamp(1.5rem, 3.2vw, 2.2rem); margin-bottom: 0.8rem; }
  .example-text p { color: var(--paper-dim); max-width: 46ch; }
  @media (max-width: 760px) {
    .example-layout { grid-template-columns: 1fr; }
    .example-detail:nth-of-type(even) .example-media { order: 0; }
  }

  /* Floating back-to-top, present at all times */
  .back-to-top {
    position: fixed; right: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem); z-index: 90;
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--ink); color: var(--yellow);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--mono); font-size: 1.15rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.28);
    transition: transform 0.2s ease;
  }
  .back-to-top:hover { transform: translateY(-3px); }

/* LANGUAGE SWITCHER */
.lang-switcher { position: relative; }
.lang-btn {
  background: transparent; border: 1px solid var(--line); border-radius: 2px;
  padding: 0.5rem 0.9rem; cursor: pointer; font-family: var(--mono); font-size: 0.72rem;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--paper);
  display: inline-flex; align-items: center; gap: 0.5rem; transition: all 0.2s;
}
.lang-btn:hover { border-color: var(--ink); background: var(--ink); color: var(--yellow); }
.lang-btn svg { width: 14px; height: 14px; }
.lang-dropdown {
  position: absolute; top: calc(100% + 0.4rem); right: 0;
  background: var(--yellow); border: 1px solid var(--line); border-radius: 2px;
  min-width: 160px; max-height: 300px; overflow-y: auto;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: all 0.2s ease; box-shadow: 0 12px 32px rgba(0,0,0,0.18); z-index: 200;
}
.lang-dropdown.open { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-dropdown a {
  display: block; padding: 0.65rem 1rem; font-family: var(--mono); font-size: 0.72rem;
  border-bottom: 1px solid var(--line); color: var(--ink-dim); transition: all 0.15s;
}
.lang-dropdown a:last-child { border-bottom: none; }
.lang-dropdown a:hover { background: var(--ink); color: var(--yellow); }
.lang-dropdown a .soon {
  float: right; font-size: 0.6rem; opacity: 0.5; text-transform: uppercase;
}

/* SURVEY FORM */
.survey-form { max-width: 640px; }
.survey-step { margin-bottom: 2.2rem; }
.survey-step h3 {
  font-family: var(--display); font-weight: 700; font-size: 1.15rem;
  margin-bottom: 1rem; color: var(--paper);
}
.survey-step .question { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--paper-dim); margin-bottom: 0.9rem; }
.survey-options { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.survey-option {
  position: relative; cursor: pointer;
}
.survey-option input { position: absolute; opacity: 0; }
.survey-option .option-box {
  display: block; padding: 0.7rem 1.1rem; border: 1px solid var(--line); border-radius: 2px;
  font-family: var(--body-font); font-size: 0.9rem; color: var(--paper-dim);
  transition: all 0.15s; background: transparent;
}
.survey-option input:checked + .option-box {
  border-color: var(--ink); background: var(--ink); color: var(--yellow);
}
.survey-option:hover .option-box { border-color: var(--ink); }
.survey-option .other-input {
  display: none; margin-top: 0.5rem; width: 100%;
  font-family: var(--body-font); font-size: 0.9rem; padding: 0.5rem 0.7rem;
  background: rgba(255,255,255,0.35); border: 1px solid var(--line); border-radius: 2px;
  color: var(--paper);
}
.survey-option input:checked ~ .other-input { display: block; }
.survey-option input:focus ~ .other-input { display: block; }

.survey-details { margin-top: 1rem; }
.survey-details textarea {
  width: 100%; min-height: 120px; resize: vertical;
  font-family: var(--body-font); font-size: 0.98rem; color: var(--paper);
  background: rgba(255,255,255,0.35); border: 1px solid var(--line); border-radius: 2px;
  padding: 0.75rem 0.9rem;
}
.survey-details textarea:focus { outline: 2px solid var(--ink); outline-offset: 1px; }

.survey-contact { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
@media (max-width: 560px) { .survey-contact { grid-template-columns: 1fr; } }
.survey-contact input {
  width: 100%; font-family: var(--body-font); font-size: 0.98rem; color: var(--paper);
  background: rgba(255,255,255,0.35); border: 1px solid var(--line); border-radius: 2px;
  padding: 0.75rem 0.9rem;
}
.survey-contact input:focus { outline: 2px solid var(--ink); outline-offset: 1px; }

/* ABOUT PAGE */
.about-hero { min-height: 50svh; display: flex; flex-direction: column; justify-content: center; padding-top: 6rem; }
.about-hero h1 { font-family: var(--display); font-weight: 900; font-size: clamp(2.2rem, 6vw, 4rem); max-width: 16ch; margin: 1rem 0 1.4rem; }
.about-body p { color: var(--paper-dim); max-width: 58ch; margin-bottom: 1.2rem; font-size: 1.02rem; }
.about-body h3 { font-family: var(--display); font-weight: 700; font-size: 1.3rem; margin: 2.5rem 0 0.8rem; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin: 3rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 2rem 0; }
.about-stats .stat-num { font-family: var(--display); font-weight: 900; font-size: 2.2rem; color: var(--ink); }
.about-stats .stat-label { font-family: var(--mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--paper-dim); margin-top: 0.3rem; }
@media (max-width: 600px) { .about-stats { grid-template-columns: 1fr; gap: 1.5rem; } }

/* METHODS SECTION */
.methods { border-top: 1px solid var(--line); }
.methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.method-card {
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 2rem;
  transition: border-color 0.2s, transform 0.2s;
}
.method-card:hover {
  border-color: var(--ink);
  transform: translateY(-3px);
}
.method-icon {
  width: 40px; height: 40px;
  margin-bottom: 1.2rem;
  color: var(--ink);
}
.method-card h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  color: var(--paper);
}
.method-card p {
  color: var(--paper-dim);
  font-size: 0.92rem;
  line-height: 1.55;
}
@media (max-width: 900px) { .methods-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .methods-grid { grid-template-columns: 1fr; } }


/* ===== MOBILE NAV DRAWER ===== */
.nav-drawer {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 0.65rem;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  z-index: 110;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--paper);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 99;
}
.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .menu-toggle { display: flex; }

  .nav-drawer {
    position: fixed;
    top: 0; right: 0;
    width: min(300px, 82vw);
    height: 100vh;
    height: 100dvh;
    background: var(--yellow);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 1.8rem 2rem;
    gap: 0;
    margin-left: 0;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 105;
    border-left: 1px solid var(--line);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-drawer.open {
    transform: translateX(0);
  }

  .nav-drawer ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  .nav-drawer ul li {
    width: 100%;
    border-bottom: 1px solid var(--line);
  }
  .nav-drawer ul li a {
    display: block;
    padding: 1rem 0;
    font-size: 1.05rem;
    opacity: 1;
    color: var(--ink);
  }
  .nav-drawer ul li a:hover {
    color: var(--ink);
    opacity: 0.7;
  }

  .nav-drawer .lang-switcher {
    margin-top: 1.5rem;
    width: 100%;
  }
  .nav-drawer .lang-btn {
    width: 100%;
    justify-content: space-between;
    color: var(--ink);
    border-color: var(--line);
  }
  .nav-drawer .lang-btn:hover {
    background: var(--ink);
    color: var(--yellow);
  }
  .nav-drawer .lang-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    max-height: none;
    margin-top: 0.5rem;
    width: 100%;
  }
  .nav-drawer .lang-dropdown a {
    border-bottom: 1px solid var(--line);
    padding: 0.6rem 0;
    color: var(--ink-dim);
  }
  .nav-drawer .lang-dropdown a:hover {
    background: transparent;
    color: var(--ink);
  }

  body.menu-open {
    overflow: hidden;
  }
}
