.scratch-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--ocf-border-light, #edf0f5);
  padding: 16px var(--scratch-pad);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.scratch-brand {
  display: grid;
  gap: 2px;
  text-decoration: none;
}

.scratch-brand__name {
  color: var(--ocf-heading, #161616);
  font-weight: 800;
}

.scratch-brand__tagline {
  color: var(--ocf-label, #6b7280);
  font-size: 0.82rem;
}

.scratch-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.92rem;
  font-weight: 700;
}

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

.scratch-nav__phone {
  color: var(--ocf-accent, #2457d6);
}

.scratch-menu-button {
  display: none;
}

@media (max-width: 760px) {
  .scratch-header {
    align-items: flex-start;
  }

  .scratch-menu-button {
    display: inline-flex;
    border: 1px solid var(--ocf-border, #d9dde5);
    border-radius: 999px;
    padding: 8px 12px;
    background: #fff;
  }

  .scratch-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px var(--scratch-pad);
    border-bottom: 1px solid var(--ocf-border-light, #edf0f5);
    background: #fff;
  }

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